home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / ch_2.3 / inv / inv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-11  |  402 b   |  28 lines

  1. /* 
  2.  * combine.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8. #ifndef _INV_H_
  9. #define    _INV_H_
  10.  
  11.  
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <math.h>
  15. #include <malloc.h>
  16.  
  17. #include "ip.h"
  18.  
  19. /*
  20.  * Function prototypes
  21.  */
  22. extern void main (int, char **);
  23. extern void usage (char *);
  24. extern void inv_image (Image *);
  25.  
  26. #endif
  27. /*_INV_H_ */
  28.